home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 01 getting started with net / csharpdemo / test.cs next >
Encoding:
Text File  |  2001-09-07  |  328 b   |  20 lines

  1. namespace CSharpDemo
  2. {
  3.     public class Test
  4.     {
  5.         static public void Main(string[] args)
  6.         {
  7.             double x;
  8.             double res;
  9.             x = 12.5;
  10.             res = Add(x, 46.5);
  11.             System.Console.Write("The result is ");
  12.             System.Console.WriteLine(res);
  13.         }
  14.  
  15.         static double Add(double n1, double n2)
  16.         {
  17.             return n1 + n2;
  18.         }
  19.     }
  20. }